www.gusucode.com > VC++ 高仿QQ2008好友界面源码程序 > VC++ 高仿QQ2008好友界面源码程序/code/MyICQ/Internet.cpp

    //Download by http://www.NewXing.com
// Internet.cpp: implementation of the CInternet class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "MyICQ.h"
#include "Internet.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CInternet::CInternet()
{

}

CInternet::~CInternet()
{

}
BEGIN_MESSAGE_MAP(CInternet,CWnd)
//{{AFX_MSG_MAP(CInternet,CWnd)
ON_WM_PAINT()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()


void CInternet::OnPaint()
{
	CPaintDC dc(this);
	CRect rc;GetClientRect(&rc);
	dc.FillSolidRect(rc,RGB(255,255,0));
}